From 742494140576990a905cdcf635b47be7469c0f13 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sun, 19 Jan 2014 21:27:15 +0100 Subject: [PATCH] Split documentation for $wgRCLinkLimits/$wgRCLinkDays Each var should have it own doc block Change-Id: Iec2b37687c009be9412103081ff5fc020c6dad03 --- includes/DefaultSettings.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index d5546dbfb3..0a5dc71d8d 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5510,10 +5510,15 @@ $wgRCMaxAge = 13 * 7 * 24 * 3600; $wgRCFilterByAge = false; /** - * List of Days and Limits options to list in the Special:Recentchanges and + * List of Limits options to list in the Special:Recentchanges and * Special:Recentchangeslinked pages. */ $wgRCLinkLimits = array( 50, 100, 250, 500 ); + +/** + * List of Days options to list in the Special:Recentchanges and + * Special:Recentchangeslinked pages. + */ $wgRCLinkDays = array( 1, 3, 7, 14, 30 ); /** -- 2.20.1